home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / util / cdity / clipper.lha / InstallClipper < prev    next >
Text File  |  1997-01-26  |  1KB  |  53 lines

  1. ;; Installer script for Clipper v1.01, ®1995/6/7 Roch Gadsdon of Vivid Software.
  2.  
  3. ;; First thing to do is find out where the main program should be installed.
  4.  
  5. (set ProgDir "SYS:WBStartup")    ; Default directory for NOVICE etc.
  6. (set ProgDir
  7.     (askdir
  8.         (prompt  "Select program drawer")
  9.         (help    "Use the file requester to select the drawer to place the "
  10.                  "main Clipper program in. It is reconded that you use the default "
  11.                  "drawer 'SYS:WBStartup' so that Clipper will be run whenever the "
  12.                  "Amiga is booted. However, if you are only going to use Clipper "
  13.                  "occaisonally and don't want it automatically run, you will "
  14.                  "probably want to place it in the 'SYS:Commodities' drawer.")
  15.         (default "SYS:WBStartup")
  16.         (newpath)(disk)
  17.     )
  18. )
  19. (set @default-dest ProgDir)
  20.  
  21. ;; Now copy the program file accross
  22.  
  23. (copyfiles
  24.     (source "Clipper")
  25.     (dest   ProgDir)
  26.     (infos)
  27. )
  28.  
  29. ;; Now find out where to install the guide file
  30.  
  31. (set GuideDir "SYS:")
  32. (set GuideDir
  33.     (askdir
  34.         (prompt  "Select drawer for guide file")
  35.         (help    "Use the file requester to select the drawer to place the "
  36.                  "Clipper documentation/instructions in.")
  37.         (default "SYS:")
  38.         (newpath)(disk)
  39.     )
  40. )
  41.  
  42. ;; Now copy the guide
  43.  
  44. (copyfiles
  45.     (source "Clipper.Guide")
  46.     (dest   GuideDir)
  47.     (infos)
  48. )
  49. (copyfiles
  50.     (source "ClipViewWindow.ilbm")
  51.     (dest   GuideDir)
  52. )
  53.